from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

82960

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-01-26
activesupport - 8.1.2
Ebuild name:

dev-ruby/activesupport-8.1.2

Description

Utility Classes and Extension to the Standard Library

Added to portage

2026-01-26

anydesk - 7.1.3
Ebuild name:

net-misc/anydesk-7.1.3

Description

Feature rich multi-platform remote desktop application

Added to portage

2026-01-26

awkward - 2.8.12
Ebuild name:

dev-python/awkward-2.8.12

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2026-01-26

cachetools - 6.2.5
Ebuild name:

dev-python/cachetools-6.2.5

Description

Extensible memoizing collections and decorators

Added to portage

2026-01-26

cccc - 3.2.0
Ebuild name:

dev-util/cccc-3.2.0

Description

Source metrics (line counts, complexity, etc) for Java and C++

Added to portage

2026-01-26

commons-codec - 1.20.0
Ebuild name:

dev-java/commons-codec-1.20.0

Description

Implementations of common encoders and decoders in Java

Added to portage

2026-01-26

coverage - 7.13.2
Ebuild name:

dev-python/coverage-7.13.2

Description

Code coverage measurement for Python

Added to portage

2026-01-26

eid-mw - 5.1.28
Ebuild name:

app-crypt/eid-mw-5.1.28

Description

Electronic Identity Card middleware supplied by the Belgian Federal Governm

Added to portage

2026-01-26

ensurepip-setuptools - 80.10.2
Ebuild name:

dev-python/ensurepip-setuptools-80.10.2

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2026-01-26

flatpak - 1.16.3
Ebuild name:

sys-apps/flatpak-1.16.3

Description

Linux application sandboxing and distribution framework

Added to portage

2026-01-26

gcc - 16.0.1_p20260125
Ebuild name:

sys-devel/gcc-16.0.1_p20260125

Description

The GNU Compiler Collection

Added to portage

2026-01-26

git-sources - 6.19_rc7
Ebuild name:

sys-kernel/git-sources-6.19_rc7

Description

The very latest -git version of the Linux kernel

Added to portage

2026-01-26

gnulib - 2026.01.14.22.26.00
Ebuild name:

dev-libs/gnulib-2026.01.14.22.26.00

Description

Library of common routines intended to be shared

Added to portage

2026-01-26

gromacs - 2026.0
Ebuild name:

sci-chemistry/gromacs-2026.0

Description

The ultimate molecular dynamics simulation package

Added to portage

2026-01-26

hcloud - 1.61.0
Ebuild name:

app-admin/hcloud-1.61.0

Description

A command-line interface for Hetzner Cloud

Added to portage

2026-01-26

hypothesis - 6.151.0
Ebuild name:

dev-python/hypothesis-6.151.0

Description

A library for property based testing

Added to portage

2026-01-26

incus - 6.21
Ebuild name:

app-containers/incus-6.21

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-01-26

jemalloc - 5.3.0-r2
Ebuild name:

dev-libs/jemalloc-5.3.0-r2

Description

Jemalloc is a general-purpose scalable concurrent allocator

Added to portage

2026-01-26

kalarm - 25.12.1-r2
Ebuild name:

kde-apps/kalarm-25.12.1-r2

Description

Application to manage alarms and other timer based alerts for the deskto

Added to portage

2026-01-26

kdeplasma-addons - 6.5.5-r1
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.5-r1

Description

Extra Plasma applets and engines

Added to portage

2026-01-26

kimageformats - 6.22.0-r1
Ebuild name:

kde-frameworks/kimageformats-6.22.0-r1

Description

Framework providing additional format plugins for Qt's image

Added to portage

2026-01-26

kwin - 6.5.5-r1
Ebuild name:

kde-plasma/kwin-6.5.5-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-01-26

libkscreen - 6.5.5-r1
Ebuild name:

kde-plasma/libkscreen-6.5.5-r1

Description

Plasma screen management library

Added to portage

2026-01-26

marknote - 1.4.1
Ebuild name:

app-text/marknote-1.4.1

Description

Markdown editor with a wide range of formating options for everyday notes

Added to portage

2026-01-26

multidict - 6.7.1
Ebuild name:

dev-python/multidict-6.7.1

Description

multidict implementation

Added to portage

2026-01-26

openpgp-keys-gentoo-auth - 20260125
Ebuild name:

sec-keys/openpgp-keys-gentoo-auth-20260125

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-01-26

openpgp-keys-gentoo-release - 20260125
Ebuild name:

sec-keys/openpgp-keys-gentoo-release-20260125

Description

OpenPGP keys used for Gentoo releases (snapshots, sta

Added to portage

2026-01-26

osm - 9999
Ebuild name:

app-emacs/osm-9999

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-26

pebble - 5.2.0
Ebuild name:

dev-python/pebble-5.2.0

Description

Threading and multiprocessing eye-candy

Added to portage

2026-01-26

pecl-http - 4.3.1
Ebuild name:

dev-php/pecl-http-4.3.1

Description

Extended HTTP Support for PHP

Added to portage

2026-01-26

plasma-workspace - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-workspace-6.5.5-r1

Description

KDE Plasma workspace

Added to portage

2026-01-26

pygresql - 6.2.3
Ebuild name:

dev-python/pygresql-6.2.3

Description

A Python interface for the PostgreSQL database

Added to portage

2026-01-26

pypdf - 6.6.1
Ebuild name:

dev-python/pypdf-6.6.1

Description

Python library to work with PDF files

Added to portage

2026-01-26

python-multipart - 0.0.22
Ebuild name:

dev-python/python-multipart-0.0.22

Description

A streaming multipart parser for Python

Added to portage

2026-01-26

rbpdf - 1.21.4
Ebuild name:

dev-ruby/rbpdf-1.21.4

Description

Ruby on Rails RBPDF plugin

Added to portage

2026-01-26

redmine - 6.0.7
Ebuild name:

www-apps/redmine-6.0.7

Description

Flexible project management web application using the Ruby on Rails framewor

Added to portage

2026-01-26

setuptools - 80.10.2
Ebuild name:

dev-python/setuptools-80.10.2

Description

Collection of extensions to Distutils

Added to portage

2026-01-26

slurp - 1.6.0
Ebuild name:

gui-apps/slurp-1.6.0

Description

Select a region in a Wayland compositor and print it to the standard output

Added to portage

2026-01-26

ukkonen - 1.1.0
Ebuild name:

dev-python/ukkonen-1.1.0

Description

Implementation of bounded Levenshtein distance (Ukkonen)

Added to portage

2026-01-26

wcwidth - 0.4.0
Ebuild name:

dev-python/wcwidth-0.4.0

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-26

2026-01-25
Finance-Quote - 1.670.0-r1
Ebuild name:

dev-perl/Finance-Quote-1.670.0-r1

Description

Get stock and mutual fund quotes from various exchanges

Added to portage

2026-01-25

Sys-Virt - 12.0.0
Ebuild name:

dev-perl/Sys-Virt-12.0.0

Description

API for using the libvirt library from Perl

Added to portage

2026-01-25

aws-c-auth - 0.9.3
Ebuild name:

dev-libs/aws-c-auth-0.9.3

Description

AWS C Auth C99 library implementation of AWS client-side authentication.

Added to portage

2026-01-25

aws-crt-cpp - 0.35.4
Ebuild name:

dev-cpp/aws-crt-cpp-0.35.4

Description

C++ wrapper around the aws-c-* libraries

Added to portage

2026-01-25

aws-sdk-cpp - 1.11.712
Ebuild name:

dev-cpp/aws-sdk-cpp-1.11.712

Description

AWS SDK for C++

Added to portage

2026-01-25

cli-helpers - 2.8.1
Ebuild name:

dev-python/cli-helpers-2.8.1

Description

Python helpers for common CLI tasks

Added to portage

2026-01-25

color - 2.2.0
Ebuild name:

dev-ruby/color-2.2.0

Description

Colour management with Ruby

Added to portage

2026-01-25

configuradorfnmt - 5.0.3
Ebuild name:

app-crypt/configuradorfnmt-5.0.3

Description

Spanish government certificate request generator

Added to portage

2026-01-25

coreutils - 9.9-r12
Ebuild name:

sys-apps/coreutils-9.9-r12

Description

Standard GNU utilities (chmod, cp, dd, ls, sort, tr, head, wc, who,...)

Added to portage

2026-01-25

django-cache-url - 3.4.6
Ebuild name:

dev-python/django-cache-url-3.4.6

Description

Use Cache URLs in your Django application

Added to portage

2026-01-25

execline - 2.9.8.1
Ebuild name:

dev-lang/execline-2.9.8.1

Description

A non-interactive scripting language

Added to portage

2026-01-25

faker - 3.6.0
Ebuild name:

dev-ruby/faker-3.6.0

Description

A library for generating fake data such as names, addresses, and phone numbers

Added to portage

2026-01-25

fedora-backgrounds - 43.0.4
Ebuild name:

x11-themes/fedora-backgrounds-43.0.4

Description

A set of default and supplemental wallpapers for Fedora

Added to portage

2026-01-25

fontbox - 2.0.32-r1
Ebuild name:

dev-java/fontbox-2.0.32-r1

Description

An open source Java library for parsing font files

Added to portage

2026-01-25

fop - 2.10-r2
Ebuild name:

dev-java/fop-2.10-r2

Description

XML Graphics Format Object Processor All-In-One

Added to portage

2026-01-25

gcc - 13.4.1_p20260122
Ebuild name:

sys-devel/gcc-13.4.1_p20260122

Description

The GNU Compiler Collection

Added to portage

2026-01-25

gcc - 14.3.1_p20260123
Ebuild name:

sys-devel/gcc-14.3.1_p20260123

Description

The GNU Compiler Collection

Added to portage

2026-01-25

gcc - 15.2.1_p20260124
Ebuild name:

sys-devel/gcc-15.2.1_p20260124

Description

The GNU Compiler Collection

Added to portage

2026-01-25

glibc - 2.41-r10
Ebuild name:

sys-libs/glibc-2.41-r10

Description

GNU libc C library

Added to portage

2026-01-25

gnome-network-displays - 0.99.0
Ebuild name:

gnome-extra/gnome-network-displays-0.99.0

Description

Stream the desktop to Wi-Fi Display capable devices

Added to portage

2026-01-25

harfbuzz - 12.3.2
Ebuild name:

media-libs/harfbuzz-12.3.2

Description

An OpenType text shaping engine

Added to portage

2026-01-25

incus - 6.0.5-r1
Ebuild name:

app-containers/incus-6.0.5-r1

Description

Modern, secure and powerful system container and virtual machine mana

Added to portage

2026-01-25

jdbc-postgresql - 42.7.8
Ebuild name:

dev-java/jdbc-postgresql-42.7.8

Description

Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database

Added to portage

2026-01-25

jetbrains-annotations - 26.0.2.1
Ebuild name:

dev-java/jetbrains-annotations-26.0.2.1

Description

Annotations for JVM-based languages

Added to portage

2026-01-25

junit-pioneer - 1.9.1-r2
Ebuild name:

dev-java/junit-pioneer-1.9.1-r2

Description

JUnit 5 Extension Pack

Added to portage

2026-01-25

kauth - 5.116.0-r1
Ebuild name:

kde-frameworks/kauth-5.116.0-r1

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-01-25

libqalculate - 5.9.0
Ebuild name:

sci-libs/libqalculate-5.9.0

Description

A modern multi-purpose calculator library

Added to portage

2026-01-25

libsodium - 1.0.21_p20260122
Ebuild name:

dev-libs/libsodium-1.0.21_p20260122

Description

Portable fork of NaCl, a higher-level cryptographic library

Added to portage

2026-01-25

libvirt - 12.0.0
Ebuild name:

app-emulation/libvirt-12.0.0

Description

C toolkit to manipulate virtual machines

Added to portage

2026-01-25

libvirt-python - 12.0.0
Ebuild name:

dev-python/libvirt-python-12.0.0

Description

libvirt Python bindings

Added to portage

2026-01-25

loupe - 49.2
Ebuild name:

media-gfx/loupe-49.2

Description

View images

Added to portage

2026-01-25

lucene++ - 3.0.9-r2
Ebuild name:

dev-cpp/lucene++-3.0.9-r2

Description

C++ port of Lucene library, a high-performance, full-featured text search

Added to portage

2026-01-25

makemkv - 1.18.3
Ebuild name:

media-video/makemkv-1.18.3

Description

Tool for ripping and streaming Blu-ray, HD-DVD and DVD discs

Added to portage

2026-01-25

mkdocstrings - 1.0.2
Ebuild name:

dev-python/mkdocstrings-1.0.2

Description

Automatic documentation from sources, for MkDocs

Added to portage

2026-01-25

mutt - 2.3.0
Ebuild name:

mail-client/mutt-2.3.0

Description

A small but very powerful text-based mail client

Added to portage

2026-01-25

mythtv - 35.0_p20251230
Ebuild name:

media-tv/mythtv-35.0_p20251230

Description

Open Source DVR and media center hub

Added to portage

2026-01-25

openafs - 1.8.14
Ebuild name:

net-fs/openafs-1.8.14

Description

The OpenAFS distributed file system

Added to portage

2026-01-25

openjdk - 26_beta32
Ebuild name:

dev-java/openjdk-26_beta32

Description

Open source implementation of the Java programming language

Added to portage

2026-01-25

openjdk - 27_alpha6
Ebuild name:

dev-java/openjdk-27_alpha6

Description

Open source implementation of the Java programming language

Added to portage

2026-01-25

openjdk - 8.482_p08
Ebuild name:

dev-java/openjdk-8.482_p08

Description

Open source implementation of the Java programming language

Added to portage

2026-01-25

openpgp-keys-apache-commons - 20251102
Ebuild name:

sec-keys/openpgp-keys-apache-commons-20251102

Description

OpenPGP keys used by commons.apache.org

Added to portage

2026-01-25

openpgp-keys-libjpeg-turbo - 20260124
Ebuild name:

sec-keys/openpgp-keys-libjpeg-turbo-20260124

Description

OpenPGP key used by media-libs/libjpeg-turbo

Added to portage

2026-01-25

openrc-settingsd - 1.5.0
Ebuild name:

app-admin/openrc-settingsd-1.5.0

Description

System settings D-Bus service for OpenRC

Added to portage

2026-01-25

openttd - 15.1
Ebuild name:

games-simulation/openttd-15.1

Description

A clone of Transport Tycoon Deluxe

Added to portage

2026-01-25

pass - 1.7.4-r4
Ebuild name:

app-admin/pass-1.7.4-r4

Description

Stores, retrieves, generates, and synchronizes passwords securely

Added to portage

2026-01-25

passff-host - 1.2.5
Ebuild name:

www-plugins/passff-host-1.2.5

Description

Host app for the PassFF WebExtension

Added to portage

2026-01-25

pdfbox - 2.0.32-r1
Ebuild name:

dev-java/pdfbox-2.0.32-r1

Description

Java library and utilities for working with PDF documents

Added to portage

2026-01-25

plantuml - 1.2026.1
Ebuild name:

media-gfx/plantuml-1.2026.1

Description

Draw UML diagrams using a simple and human readable text description

Added to portage

2026-01-25

powermock-reflect - 2.0.9
Ebuild name:

dev-java/powermock-reflect-2.0.9

Description

Various utilities for accessing internals of a class

Added to portage

2026-01-25

procps - 4.0.5-r4
Ebuild name:

sys-process/procps-4.0.5-r4

Description

Standard informational utilities and process-handling tools

Added to portage

2026-01-25

puma - 7.2.0
Ebuild name:

www-servers/puma-7.2.0

Description

a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rac

Added to portage

2026-01-25

pycollada - 0.9.3
Ebuild name:

dev-python/pycollada-0.9.3

Description

Python library for reading and writing COLLADA documents

Added to portage

2026-01-25

qalculate-gtk - 5.9.0
Ebuild name:

sci-calculators/qalculate-gtk-5.9.0

Description

Modern multi-purpose calculator

Added to portage

2026-01-25

qalculate-qt - 5.9.0
Ebuild name:

sci-calculators/qalculate-qt-5.9.0

Description

Qt-based UI for libqalculate

Added to portage

2026-01-25

qpdf - 12.3.2
Ebuild name:

app-text/qpdf-12.3.2

Description

Command-line tool for structural, content-preserving transformation of PDF fil

Added to portage

2026-01-25

quickcrypt - 0.9.2b-r1
Ebuild name:

app-crypt/quickcrypt-0.9.2b-r1

Description

gives you a quick MD5 Password from any string

Added to portage

2026-01-25

rainbowcrack - 1.8
Ebuild name:

app-crypt/rainbowcrack-1.8

Description

Hash cracker that precomputes plaintext - ciphertext pairs in advance

Added to portage

2026-01-25

redoflacs - 1.1.0
Ebuild name:

media-sound/redoflacs-1.1.0

Description

Bash commandline flac compressor, verifier, organizer, analyzer, retagg

Added to portage

2026-01-25

rhash - 1.4.5
Ebuild name:

app-crypt/rhash-1.4.5

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2026-01-25

rhash - 1.4.6-r1
Ebuild name:

app-crypt/rhash-1.4.6-r1

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2026-01-25

rich - 14.3.1
Ebuild name:

dev-python/rich-14.3.1

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2026-01-25

rotix - 0.83-r3
Ebuild name:

app-crypt/rotix-0.83-r3

Description

Rotix allows you to generate rotational obfuscations

Added to portage

2026-01-25

rpm-sequoia - 1.10.0
Ebuild name:

app-crypt/rpm-sequoia-1.10.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-25

rpm-sequoia - 1.9.0
Ebuild name:

app-crypt/rpm-sequoia-1.9.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-25

s6 - 2.14.0.1
Ebuild name:

sys-apps/s6-2.14.0.1

Description

skarnet.org's small and secure supervision software suite

Added to portage

2026-01-25

s6-frontend - 0.0.1.1-r1
Ebuild name:

sys-apps/s6-frontend-0.0.1.1-r1

Description

Frontend to the s6 init system

Added to portage

2026-01-25

s6-networking - 2.7.2.1
Ebuild name:

net-misc/s6-networking-2.7.2.1

Description

Suite of small networking utilities for Unix systems

Added to portage

2026-01-25

s6-rc - 0.6.0.0
Ebuild name:

sys-apps/s6-rc-0.6.0.0

Description

Service manager for the s6 supervision suite

Added to portage

2026-01-25

scram - 3.2
Ebuild name:

dev-java/scram-3.2

Description

SCRAM (RFC 5802) Java implementation

Added to portage

2026-01-25

skalibs - 2.14.5.1
Ebuild name:

dev-libs/skalibs-2.14.5.1

Description

General-purpose libraries from skarnet.org

Added to portage

2026-01-25

snort - 2.9.20-r1
Ebuild name:

net-analyzer/snort-2.9.20-r1

Description

The de facto standard for intrusion detection/prevention

Added to portage

2026-01-25

sof-firmware - 2025.12.1
Ebuild name:

sys-firmware/sof-firmware-2025.12.1

Description

Sound Open Firmware (SOF) binary files

Added to portage

2026-01-25

tiff - 4.7.1
Ebuild name:

media-libs/tiff-4.7.1

Description

Tag Image File Format (TIFF) library

Added to portage

2026-01-25

tomcat - 9.0.115
Ebuild name:

www-servers/tomcat-9.0.115

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2026-01-25

waffle-jna - 3.5.1
Ebuild name:

dev-java/waffle-jna-3.5.1

Description

Enable drop-in Windows Single Sign On for popular Java web servers

Added to portage

2026-01-25

webapp-config - 1.56
Ebuild name:

app-admin/webapp-config-1.56

Description

Gentoo's installer for web-based applications

Added to portage

2026-01-25

wine-staging - 11.1
Ebuild name:

app-emulation/wine-staging-11.1

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2026-01-25

wrapt - 2.1.0_rc1
Ebuild name:

dev-python/wrapt-2.1.0_rc1

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-01-25

x25519 - 1.0.11
Ebuild name:

dev-ruby/x25519-1.0.11

Description

Key exchange via the X25519 (Curve25519) Elliptic Curve Diffie-Hellman funct

Added to portage

2026-01-25

xmpbox - 2.0.32-r1
Ebuild name:

dev-java/xmpbox-2.0.32-r1

Description

An open source Java tool that implements Adobe's XMP(TM) specification

Added to portage

2026-01-25

xscreensaver - 6.14
Ebuild name:

x11-misc/xscreensaver-6.14

Description

Modular screen saver and locker for the X Window System

Added to portage

2026-01-25

yubico-piv-tool - 2.7.3
Ebuild name:

sys-auth/yubico-piv-tool-2.7.3

Description

Command-line tool and p11-kit module for the YubiKey PIV application

Added to portage

2026-01-25

zabbix - 6.0.43
Ebuild name:

net-analyzer/zabbix-6.0.43

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-01-25

zabbix - 7.0.22
Ebuild name:

net-analyzer/zabbix-7.0.22

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-01-25

zabbix - 7.2.15
Ebuild name:

net-analyzer/zabbix-7.2.15

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-01-25

zabbix - 7.4.6
Ebuild name:

net-analyzer/zabbix-7.4.6

Description

ZABBIX is software for monitoring of your applications, network and serve

Added to portage

2026-01-25

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 65.0 ms